@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif !important;
    font-size: 62.5%;
    font-size: 10px;
    scroll-behavior: smooth;
    
}

  /* Step 1: Common Properties
  These styles are required to make icons render reliably */
  .icon::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }


/* Navbar section */

.nav {
    width: 100%;
    height: 100px;
    position: fixed;
    line-height: 100px;
    text-align: center;
    
}


.nav div.logoK {
    float: left;
    width: auto;
    height: auto;
    margin-top: -1.5rem;
}


.nav div.main_list {
    height: 100px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    height: 65px;
    width: auto;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #000000;
    line-height: 50px;
    font-size: 2rem !important;
    
}

.nav div.main_list ul li a:hover {
    color: #78CC91;
    font-weight: bold;
}


/* Home section */

.home {
    height: 100vh;
    background-image: url(../image/lading1.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}




.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 9999;
}



/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 920px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:1020px) {
    .navTrigger {
        display: block;
    }
    .nav div.logoK {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #ffffffa8;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
        color: #004126;
    }
    .nav div.media_button {
        display: block;
    }
}


/* Reveal webpage */
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #000000;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    background-color: #fff;
    padding-top: 1.5rem;
    padding: 0;

}
/* color del fondo del nav */

/* Cuerpo del landing */

.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 100%; 
  }
  .row .column1 {
    padding-right: 50px;
    width: 1000px;
  }
  .column1 h1 {
    font-size: 60px;
    margin-bottom: 10px;
    
  }
  .column1 p {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
  }

  .column2{
    width: 500px;
  }


.about-us p{
    font-size: 2rem !important;
    text-align: center;
}

#services ul, li{
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    padding-top: 0 !important;
}

h4{
    color:#78CC91 !important;;
    font-size: 16px !important;;
    padding-bottom: 0;
    width: 100%; 

}
.container{
    margin: auto;
    max-height: 80%;
    height: auto;
    width: auto; 
}

#environment p{
    text-align: center;
    font-size: 2rem;
    font-style: italic;
}

#environment img{
    border-radius: 70%;
    height: 20rem;
    align-items: center;
    margin-top: 50px;
    box-shadow: 5px 5px 10px rgba(122, 122, 122, 0.541);

}

/* slides */

.container-slider{
    max-width: 60rem;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }
  
.container-slider ul, li {
      padding: 0;
      margin: 0;
      list-style-type: none;
      
  }
  
  ul.slider{
    position: relative;
    width: 400px;
    height: 300px;
  }
  
  ul.slider li {
      position: absolute;
      left: 0px;
      top: 0px;
      opacity: 0;
      width: inherit;
      height: inherit;
      transition: opacity .5s;
      background:#fff;
  }
  
  ul.slider li img{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  ul.slider li:first-child {
      opacity: 1; /*Mostramos el primer <li>*/
  }
  
  ul.slider li:target {
      opacity: 1; /*Mostramos el <li> del enlace que pulsemos*/
  }
  
  .menu{
    text-align: center;
    margin: 20px;
  }
  
  .menu li{
    display: inline-block;
    text-align: center;
  }
  
  .menu li a{
    display: inline-block;
    color: white;
    text-decoration: none;
    background-color: grey;
    margin-top: 5px;
    padding: 10px;
    width: 10px;
    height: 10px;
    font-size: 10px;
    border-radius: 100%;
  }

  .menu li a:hover{
    background-color: rgb(26, 26, 26);

  }

/* Formulario form */

.landing {
    height: fit-content;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 65%;

}


.button {
    background-color:#A6F0BF;
    border: 1px;
    border-radius: 15px;
    padding: 10px;
    
  }

  

.contact_form{	
	max-width: 600px; 
    height: auto;
    width: auto;
    margin: 80px auto;
	border-radius: 10px;  
	padding-top: 30px;
	padding-bottom: 20px;  
    background-color: #fbfbfb; 
    padding-left: 30px; 
}


input{
	background-color: #fbfbfb; 
	width: 550px; 
	height: 40px; 
	border-radius: 5px;  
	border-style: solid; 
	border-width: 1px; 
	border-color: #000000; 
	margin-top: 10px;  
	padding-left: 10px;
    margin-bottom: 20px; 
}


textarea{
    background-color: #fbfbfb; 
	width: 550px; 
	height: 150px; 
	border-radius: 5px;  
	border-style: solid; 
	border-width: 1px; 
	border-color: #000000; 
	margin-top: 10px;  
	padding-left: 10px;
    margin-bottom: 20px; 
    padding-top: 15px; 
}


label{
    display: block; 
	float: center; 	
    font-size: 1.5rem;
}


button{
    width: 140px;
    height: 45px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #919090;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

.button:hover {
    background-color: #2C5236;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    transform: translateY(-7px);
  }


button p{
	color: #000000; 
    margin-top: 5px;
    margin-left: 5px;
    text-align: center;
}


#contact-us span{
	color: #00944c;  
    font-weight: bolder;
    font-size: 1.8rem;
    width: 100%; 
}


.aviso{
	font-size: 1.5rem;  
	color: #000000;  

}


h1{
	font-size: 4rem !important; 
	color: #00944c !important;
    width: 100%; 
    text-align: center !important;
    border-bottom: 1px solid #A6F0BF !important;
    margin: 10px 0 20px !important;
}
h1 span { 
    background:#fff; 
    padding:0 10px; 
}


h3{
	font-size: 1.2rem !important; 
	padding-bottom: 20px !important;
	color: #0e0e0e !important;
    width: 100%; 
    text-align: center !important;;
    border-bottom: 1px solid #78CC91 !important;;
}

p{
	font-size: 1.6rem !important; 
	color: #0e0e0e !important; 
}

b{
    color: #78CC91 !important;
}


#solutions p {
    font-size: 2rem !important;
    font-style: italic !important;
    text-align: center !important;
    margin-top: 25px !important;
    width: 100%; 

}

/* #solutions{
    /* background:linear-gradient(160deg, #1a3521, #1a3521d5 60%, white 75%, white); 

}*/

.landing-img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    max-width: 1000px;
}
#solutions-img{
    max-height: auto;
    max-width: 400px;
    margin-bottom: 40px;
    box-shadow: 5px 5px 10px rgba(122, 122, 122, 0.541);
    border-radius: 15px;
    height: auto;
}

#supply ul li{
    list-style-type: circle !important;
    font-size: 1.5rem !important;
    line-height: 1.5 !important;
    list-style-position: outside !important;
    padding-top: 10px !important;
    
}

::-webkit-input-placeholder {
 color: #a8a8a8;
}


::-webkit-textarea-placeholder {
 color: #a8a8a8;
}


.formulario input:focus{
	outline:0;
	border: 1px solid #A6F0BF;
}


.formulario textarea:focus{
	outline:0;
	border: 1px solid #A6F0BF;
}

h2{
    font-size:2.5rem !important;
    color: #00944c !important;
    text-align: center;
    font-variant: small-caps !important;
    font-weight: bolder;
}




/* footer section start */

.footer-distributed{
  background: #f1fdf6c4;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
  width: 40%;
}




/* Footer links */

.footer-distributed .footer-links{
  color:  #004126;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}


/* Footer Center */

.footer-distributed .footer-center{
  width: 35%;
  text-align: left;
}

.footer-distributed .footer-center i{
  background-color:  #33383b;
  color: #141414;
  font-size: 1.8rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 1.8rem;
  line-height: 38px;
}

.footer-distributed .footer-center p{
  display: inline-block;
  color: #0c0c0c;
  font-weight:400;
  vertical-align: middle;
  margin:0;
}

.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:1.5rem;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  rgb(15, 15, 15);
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 1.8rem;
  left: 0;
  color: #0c0c0c;
  display: inline-block;
  padding-right: 5px;
}
.footer-distributed .footer-links a:hover {
    color: #2C5236;
    font-weight: bold;
    padding-right: 5px;
  }

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
  width: 20%;
}

.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #92999f;
  font-size: 1.7rem;
  font-weight: normal;
  margin: 0;
  text-align: center;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #0c0c0c;
  font-size: 1.7rem;
  font-weight: bold;
  font-variant: small-caps;
  margin-bottom: 20px;
}

.iconksp{
    vertical-align: middle;
    width: 6rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
    text-align: center;
}

@media (max-width: 880px) {

    .footer-distributed{
      font: bold 1rem sans-serif;
    }
  
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
      display: block;
      width: 100%;
      margin-bottom: 40px;
      text-align: center;
    }
  
    .footer-distributed .footer-center i{
      margin-left: 0;
    }
  
  }


  /* Responsive section */
  #about-us {
    padding-top: 100px;
    margin-top: -100px;
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

#solutions {
    padding-top: 100px;
    margin-top: -100px;
    -webkit-background-clip: content-box;
    background-clip: content-box;
}
#contact-us {
    padding-top: 100px;
    margin-top: -100px;
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

